取消按钮阴影效果将按钮的stateListAnimator属性设置为false可以移除默认的按压阴影动画效果。示例代码Button android:idid/button android:layout_widthwrap_content android:layout_heightwrap_content android:stateListAnimatornull /适用于 API 21Android 5.0及以上版本。禁用滚动组件的弹性效果在ScrollView或RecyclerView等滚动组件中设置overScrollMode为never可禁用边缘弹性滚动效果。示例代码androidx.recyclerview.widget.RecyclerView android:layout_widthmatch_parent android:layout_heightmatch_parent android:overScrollModenever /兼容所有 Android 版本无需额外适配。修改 ImageView 的着色通过tint属性可修改ImageView的图标颜色推荐使用app命名空间以避免警告。示例代码ImageView android:layout_widthwrap_content android:layout_heightwrap_content app:tint#FFFFFF /若使用android:tint部分 IDE 会提示命名空间警告但功能正常。